home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-10-27 | 524 b | 26 lines | [TEXT/KEEN] |
- #$PromptTest
- #Echo a user response to prompt
-
- BEGIN { answer1 = prompt("This is a test - enter a string below:")
- if (answer1 != "")
- print answer1
- else
- {
- print "Null response for first answer"
- exit
- }
- answer2 = prompt("Try another string:")
- if (answer2 != "")
- print answer2
- else
- {
- print "Null response for second answer"
- exit
- }
- if (answer1+0 != 0 && answer2+0 != 0)
- {
- print "Both strings were, at least in part, numbers"
- print "and their sum is: ", answer1 + answer2
- }
- }
-